home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / python2.6 / dist-packages / checkbox / registries / none.pyc (.txt) < prev   
Encoding:
Python Compiled Bytecode  |  2009-10-12  |  868 b   |  20 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. from checkbox.registry import Registry
  5.  
  6. class NoneRegistry(Registry):
  7.     '''Base registry for an empty registry.
  8.  
  9.     The default behavior is to always return None.
  10.     '''
  11.     
  12.     def __str__(self):
  13.         return ''
  14.  
  15.     
  16.     def items(self):
  17.         return []
  18.  
  19.  
  20.